You are here: Symbol Reference > Dew Namespace > Dew.Math Namespace > Classes > TMtx Class > TMtx Methods > TMtx.Hankel Method
Dew Math for .NET
ContentsIndexHome
PreviousUpNext
TMtx.Hankel Method

Constructs a Hankel matrix.

Syntax
C#
Visual Basic
public TMtx Hankel([In] TVec FirstColumn);

Constructs a Hankel matrix whose first column is FirstColumn and whose elements are zero below the first anti-diagonal. The Rows, Cols and TMtxVec.ComplexComplexproperties of the calling matrix are adjusted automatically.

var v: TVec; H: TMtx; begin CreateIt(v); CreateIt(H); try v.SetIt(False,[1,2,3,4]); H.Hankel(v); // H becomes: //[1 2 3 4] //[2 3 4 0] //[3 4 0 0] //[4 0 0 0] finally FreeIt(H); FreeIt(v); end; end;
Copyright (c) 1999-2024 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!